home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-29 | 4.0 KB | 150 lines | [TEXT/dosa] |
- @ECHO OFF
- REM ******************************************
- REM This is the autoexec.bat file for the
- REM Apple DOS Compatibility Card.
- REM ******************************************
-
- REM ******************************************
- REM Load DOSKEY to edit and re-use commands
- REM DOSKEY is loaded into upper memory.
- REM ******************************************
-
- LH C:\DOS\DOSKEY
-
- REM ******************************************
- REM Set the prompt
- REM ******************************************
-
- PROMPT $p$g
-
- REM ******************************************
- REM Set the paths
- REM ******************************************
-
- SET PATH=C:\DOS;C:\WINDOWS
-
- REM ******************************************
- REM Setup an environment variable TEMP which
- REM points to the DOS directory
- REM ******************************************
-
- SET TEMP=C:\DOS
-
- REM ******************************************
- REM Setup an environment variable TMP which
- REM points to the TEMP directory
- REM ******************************************
-
- SET TMP=C:\TEMP
-
- REM ******************************************
- REM Loads the Apple DOS/Windows support layer
- REM into upper memory.
- REM ******************************************
-
- @ECHO.
- LH C:\Apple\ApplePC
- @ECHO.
-
- REM ******************************************
- REM Loads MacShare into upper memory
- REM to allow file sharing on the Macintosh
- REM ******************************************
-
- LH C:\Apple\MacShare
- @ECHO.
-
- REM ******************************************
- REM Loads the CDROM software into upper
- REM memory for CDROM support.
- REM
- REM -- If you do not have a CD-ROM drive, --
- REM -- you can REM out the next line to --
- REM -- save some memory space by not --
- REM -- loading MSCDEX and CDDRVR. --
- REM ******************************************
-
- LH C:\DOS\MSCDEX /D:CDDRVR /L:E
- @ECHO.
-
- REM ******************************************
- REM Loads DOSClip into upper memory
- REM to allow cut and paste operations
- REM in DOS.
- REM ******************************************
-
- LH C:\Apple\DOSClip
- @ECHO.
-
- REM ******************************************
- REM The following lines set up the Sound
- REM Blaster sound card.
- REM ******************************************
-
- SET SOUND=C:\SB16
- SET BLASTER=A220 I5 D1 H1 T6
- C:\SB16\MIXERSET /P /Q
-
- REM ******************************************
- REM This section loads files depending
- REM on the selection made in the start-
- REM up screen.
- REM ******************************************
-
- goto %config%
-
- REM ******************************************
- REM DOS is the optimal selection for running
- REM in the DOS environment.
- REM Enable SmartDrive disk cacheing with R/W
- REM cacheing on drive C and read only for all
- REM the others.
- REM ******************************************
-
- :DOS
- C:\DOS\SMARTDRV.EXE C+ /L
- goto end
-
- REM ******************************************
- REM WINDOWS is the optimal selection for running
- REM in the WINDOWS environment. It will automatically
- REM launch Windows.
- REM Enable SmartDrive disk cacheing with R/W
- REM cacheing on drive C and read only for all
- REM the others.
- REM ******************************************
-
- :WINDOWS
- C:\DOS\SMARTDRV.EXE C+ /L
- WIN
- goto end
-
- REM ******************************************
- REM DOS_MAX_CONVENTIONAL_MEM is
- REM the optimal selection for obtaining maximum
- REM conventional memory
- REM ******************************************
-
- :DOS_MAX_CONVENTIONAL_MEM
- goto end
-
- REM ******************************************
- REM DOS_MAX_EXPANDED_MEM is the
- REM optimal selection obtaining maximum
- REM expanded memory.
- REM Enable SmartDrive disk cacheing with R/W
- REM cacheing on drive C and read only for all
- REM the others.
- REM ******************************************
-
- :DOS_MAX_EXPANDED_MEM
- C:\DOS\SMARTDRV.EXE C+ /L
- goto end
-
- :end
-
- REM ******************************************
- REM END
- REM ******************************************
-